Route::group(['prefix'=>'accounts','as'=>'account.'], function(){
Route::get('/', 'AccountController@index')->name('index');
Route::get('connect', 'AccountController@connect')->name('connect');
});
Route::group(['prefix'=>'quotes','as'=>'quote.'], function(){
Route::get('/', 'QuoteController@index')->name('index');
Route::get('connect', 'QuoteController@create')->name('create');
});
Route::group(['prefix' => 'admin'], function () {
Route::get('users', function () {
// Matches The "/admin/users" URL
});
});
Route::get('user/profile', [UserProfileController::class, 'show'])->name('profile');
Route::get('user/{id}', function ($id) {
return 'User '.$id;
});
Route::match(['get', 'post'], '/', function () {
//
});
Route::any('/', function () {
//
});